Conditions | 2 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | /** |
||
27 | Level.keys.forEach(function (id) { |
||
28 | var level = { |
||
29 | id: id, |
||
30 | weight: Level.keys.indexOf(id) + 1, |
||
31 | implicit: implicit.indexOf(id) > -1 |
||
32 | } |
||
33 | Level[id] = level |
||
34 | Level.values.push(level) |
||
35 | var target = level.implicit ? Level.implicit : Level.explicit |
||
36 | target.push(level) |
||
37 | }) |
||
38 | |||
49 |